Search
Do nothing It's wrong but well intentioned. The best we can do is leave a comment saying why its wrong.
I was thinking the same thing. Maybe instead there should be one category for code golf and leave the main Q&A is for other types of challenges and puzzles?
I made carousel image slider by following tutorials. To slide images , I made the below function. const moveToSlide = (track, currentSlide, targetSlide) => { track.style.transform = 'translat...
Function parameters should not be allowed to be used in place of a return value. Reasons: Terms like return value and function result are explicitly specified as a specific, formal language i...
A program may output a boolean value by using different amount of time or instructions till it returns. If a program needs to determine a boolean value, it may return in less than N second (or ins...
Your challenge today is to golf a program to interpret something Turing-complete. You may use any Turing-complete system for this so long as it is not the source language of the challenge - even a...
In this simple challenge, create a short program that takes 2 ints as input, output them, swap their places, then output them again. Those 2 integers can't be the same number. The program with the ...
This is my code to create navigation bar import './App.css'; import{ BrowserRouter, Routes, //replaces "Swiutch" used till v5 Route, }from "react-router-dom"; import Footer from "./...
I'm still being bugged by flags being ignored when adding the language onto the leaderboard. Take for example here on an answer in Vyxal: In case you don't know, when we write an answer, using f...
IF flags take arguments, those arguments count for the code length For example, in Japt, -F"string" is a flag that prints "string" if the output is falsy - in my opinion this should add 6 bytes on...
import requests import json import numpy as np import base64 import cv2 Replace this with the actual image path you want to test image_path = 'H_L_.jpg' Read and preprocess the image image ...
`plugins { id 'com.android.application' } android { compileNdk flutter.compileNdkVersion compileOptions{ sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion...