id string | prompt string | language string | task_name string | repo_path string | test_command string | setup_commands list | task_docs_json string | upstream_repo string | upstream_commit_sha string | build_timestamp string |
|---|---|---|---|---|---|---|---|---|---|---|
go/alphametics | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | alphametics | go/alphametics | go test | [] | {"instructions.append.md": "# Implementation\n\nDefine a single Go func, Solve, which accepts a puzzle string which may have zero\nor more + operators, and one == operator; Solve should attempt to solve the alphametics puzzle\nand return a map of all the letter substitutions for both the puzzle and the addition solutio... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.322375+00:00 |
go/beer-song | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | beer-song | go/beer-song | go test | [] | {"instructions.md": "# Instructions\n\nRecite the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall.\n\nNote that not all verses are identical.\n\n```text\n99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n\n98 ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.322933+00:00 |
go/book-store | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | book-store | go/book-store | go test | [] | {"instructions.append.md": "# Implementation\n\nDefine a single Go func, Cost, which calculates the cost\nfor a given list of books based on the defined discounts.\n\nUse the following signature for func Cost:\n\n```\nfunc Cost(books []int) int\n```\nCost will return the total cost (after discounts) in cents.\nFor exam... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.323181+00:00 |
go/bottle-song | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | bottle-song | go/bottle-song | go test | [] | {"instructions.md": "# Instructions\n\nRecite the lyrics to that popular children's repetitive song: Ten Green Bottles.\n\nNote that not all verses are identical.\n\n```text\nTen green bottles hanging on the wall,\nTen green bottles hanging on the wall,\nAnd if one green bottle should accidentally fall,\nThere'll be ni... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.323376+00:00 |
go/bowling | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | bowling | go/bowling | go test | [] | {"instructions.md": "# Instructions\n\nScore a bowling game.\n\nBowling is a game where players roll a heavy ball to knock down pins arranged in a triangle.\nWrite code to keep track of the score of a game of bowling.\n\n## Scoring Bowling\n\nThe game consists of 10 frames.\nA frame is composed of one or two ball throw... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.323630+00:00 |
go/connect | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | connect | go/connect | go test | [] | {"instructions.md": "# Instructions\n\nCompute the result for a game of Hex / Polygon.\n\nThe abstract boardgame known as [Hex][hex] / Polygon / CON-TAC-TIX is quite simple in rules, though complex in practice.\nTwo players place stones on a parallelogram with hexagonal fields.\nThe player to connect his/her stones to ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.323891+00:00 |
go/crypto-square | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | crypto-square | go/crypto-square | go test | [] | {"instructions.md": "# Instructions\n\nImplement the classic method for composing secret messages called a square code.\n\nGiven an English text, output the encoded version of that text.\n\nFirst, the input is normalized: the spaces and punctuation are removed from the English text and the message is down-cased.\n\nThe... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.324305+00:00 |
go/dnd-character | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | dnd-character | go/dnd-character | go test | [] | {"instructions.md": "# Instructions\n\nFor a game of [Dungeons & Dragons][dnd], each player starts by generating a character they can play with.\nThis character has, among other things, six abilities; strength, dexterity, constitution, intelligence, wisdom and charisma.\nThese six abilities have scores that are determi... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.324555+00:00 |
go/dominoes | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | dominoes | go/dominoes | go test | [] | {"instructions.append.md": "# Implementation\n\nDefine a single Go func, MakeChain, which accepts a slice\nof dominoes and attempts to construct a legal chain of dominoes.\n\nMakeChain should have the following signature:\n\n```\ntype Domino [2]int\n\nfunc MakeChain(input []Domino) (chain []Domino, ok bool)\n```\n\nThe... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.324821+00:00 |
go/error-handling | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | error-handling | go/error-handling | go test | [] | {"instructions.append.md": "# Instructions append\n\nTesting for specific error types may be performed by\n[type assertions](https://golang.org/ref/spec#Type_assertions). You may also\nneed to look at\n[named return values](https://blog.golang.org/defer-panic-and-recover) as a\nhelpful way to return error information f... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.325099+00:00 |
go/food-chain | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | food-chain | go/food-chain | go test | [] | {"instructions.md": "# Instructions\n\nGenerate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'.\n\nWhile you could copy/paste the lyrics, or read them from a file, this problem is much more interesting if you approach it algorithmically.\n\nThis is a [cumulative song][cumulative-song] of unknown origin... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.325353+00:00 |
go/forth | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | forth | go/forth | go test | [] | {"instructions.md": "# Instructions\n\nImplement an evaluator for a very simple subset of Forth.\n\n[Forth][forth]\nis a stack-based programming language.\nImplement a very basic evaluator for a small subset of Forth.\n\nYour evaluator has to support the following words:\n\n- `+`, `-`, `*`, `/` (integer arithmetic)\n- ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.325569+00:00 |
go/hexadecimal | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | hexadecimal | go/hexadecimal | go test | [] | {"instructions.md": "# Instructions\n\nConvert a hexadecimal number, represented as a string (e.g. \"10af8c\"), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion).\n\nOn the web we use hexadecimal to represent colors, e.g. green: 00800... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.325773+00:00 |
go/kindergarten-garden | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | kindergarten-garden | go/kindergarten-garden | go test | [] | {"instructions.md": "# Instructions\n\nYour task is to, given a diagram, determine which plants each child in the kindergarten class is responsible for.\n\nThere are 12 children in the class:\n\n- Alice, Bob, Charlie, David, Eve, Fred, Ginny, Harriet, Ileana, Joseph, Kincaid, and Larry.\n\nFour different types of seeds... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.325912+00:00 |
go/matrix | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | matrix | go/matrix | go test | [] | {"instructions.append.md": "# Instructions append\n\nIn addition to being able to get a list of rows and columns,\nyour code should also:\n\n- Set the value of an element in the matrix given its row and column number.\n\nFor all operations on the matrix, assume that rows and columns are zero-based.\nThis means that fir... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.326039+00:00 |
go/octal | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | octal | go/octal | go test | [] | {"instructions.md": "# Instructions\n\nConvert an octal number, represented as a string (e.g. '1735263'), to its\ndecimal equivalent using first principles (i.e. no, you may not use built-in or\nexternal libraries to accomplish the conversion).\n\nImplement octal to decimal conversion. Given an octal input\nstring, yo... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.326650+00:00 |
go/paasio | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | paasio | go/paasio | go test | [] | {"instructions.md": "# Instructions\n\nReport network IO statistics.\n\nYou are writing a [PaaS][paas], and you need a way to bill customers based on network and filesystem usage.\n\nCreate a wrapper for network connections and files that can report IO statistics.\nThe wrapper must report:\n\n- The total number of byte... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.326990+00:00 |
go/palindrome-products | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | palindrome-products | go/palindrome-products | go test | [] | {"instructions.md": "# Instructions\n\nDetect palindrome products in a given range.\n\nA palindromic number is a number that remains the same when its digits are reversed.\nFor example, `121` is a palindromic number but `112` is not.\n\nGiven a range of numbers, find the largest and smallest palindromes which\nare prod... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.327315+00:00 |
go/pig-latin | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | pig-latin | go/pig-latin | go test | [] | {"instructions.md": "# Instructions\n\nYour task is to translate text from English to Pig Latin.\nThe translation is defined using four rules, which look at the pattern of vowels and consonants at the beginning of a word.\nThese rules look at each word's use of vowels and consonants:\n\n- vowels: the letters `a`, `e`, ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.327587+00:00 |
go/poker | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | poker | go/poker | go test | [] | {"instructions.append.md": "# Instructions append\n\nYour function will receive an array of strings. Each string represents\na hand composed of 5 cards separated by spaces. A card is represented\nby a number and its suit.\n\nYou are to return an array containing either the best hand or, in case\nof a tie, the best hand... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.327807+00:00 |
go/pov | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | pov | go/pov | go test | [] | {"instructions.append.md": "# Instructions append\n\n## Implementation Notes\n\nThe test program creates trees by repeated application of the variadic\n`New`-function. For example, the statement\n\n```go\ntree := New(\"a\",New(\"b\"),New(\"c\",New(\"d\")))\n```\n\nconstructs the following tree:\n\n```text\n \"a\"\... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.328131+00:00 |
go/protein-translation | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | protein-translation | go/protein-translation | go test | [] | {"instructions.md": "# Instructions\n\nTranslate RNA sequences into proteins.\n\nRNA can be broken into three nucleotide sequences called codons, and then translated to a polypeptide like so:\n\nRNA: `\"AUGUUUUCU\"` => translates to\n\nCodons: `\"AUG\", \"UUU\", \"UCU\"`\n=> which become a polypeptide with the followin... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.328431+00:00 |
go/react | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | react | go/react | go test | [] | {"instructions.md": "# Instructions\n\nImplement a basic reactive system.\n\nReactive programming is a programming paradigm that focuses on how values are computed in terms of each other to allow a change to one value to automatically propagate to other values, like in a spreadsheet.\n\nImplement a basic reactive syste... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.328903+00:00 |
go/robot-simulator | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | robot-simulator | go/robot-simulator | go test | [] | {"instructions.append.md": "# Instructions append\n\n## Implementation Notes\n\nTests are separated into 3 steps.\n\nRun all tests with `go test` or run specific tests with the -tags option.\n\nExamples:\n\n```bash\ngo test # run all tests\ngo test -tags step1 # run just step 1 tests.\ngo ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.329138+00:00 |
go/say | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | say | go/say | go test | [] | {"instructions.md": "# Instructions\n\nGiven a number from 0 to 999,999,999,999, spell out that number in English.\n\n## Step 1\n\nHandle the basic case of 0 through 99.\n\nIf the input to the program is `22`, then the output should be `'twenty-two'`.\n\nYour program should complain loudly if given a number outside the... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.329303+00:00 |
go/scale-generator | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | scale-generator | go/scale-generator | go test | [] | {"instructions.md": "# Instructions\n\n## Chromatic Scales\n\nScales in Western music are based on the chromatic (12-note) scale.\nThis scale can be expressed as the following group of pitches:\n\n> A, A♯, B, C, C♯, D, D♯, E, F, F♯, G, G♯\n\nA given sharp note (indicated by a ♯) can also be expressed as the flat of the... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.329500+00:00 |
go/simple-linked-list | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | simple-linked-list | go/simple-linked-list | go test | [] | {"instructions.md": "# Instructions\n\nWrite a prototype of the music player application.\n\nFor the prototype, each song will simply be represented by a number.\nGiven a range of numbers (the song IDs), create a singly linked list.\n\nGiven a singly linked list, you should be able to reverse the list to play the songs... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.329660+00:00 |
go/sublist | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | sublist | go/sublist | go test | [] | {"instructions.md": "# Instructions\n\nGiven any two lists `A` and `B`, determine if:\n\n- List `A` is equal to list `B`; or\n- List `A` contains list `B` (`A` is a superlist of `B`); or\n- List `A` is contained by list `B` (`A` is a sublist of `B`); or\n- None of the above is true, thus lists `A` and `B` are unequal\n... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.329822+00:00 |
go/transpose | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | transpose | go/transpose | go test | [] | {"instructions.md": "# Instructions\n\nGiven an input text output it transposed.\n\nRoughly explained, the transpose of a matrix:\n\n```text\nABC\nDEF\n```\n\nis given by:\n\n```text\nAD\nBE\nCF\n```\n\nRows become columns and columns become rows.\nSee [transpose][].\n\nIf the input has rows of different lengths, this ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.329971+00:00 |
go/tree-building | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | tree-building | go/tree-building | go test | [] | {"instructions.md": "# Instructions\n\nRefactor a tree building algorithm.\n\nSome web-forums have a tree layout, so posts are presented as a tree.\nHowever the posts are typically stored in a database as an unsorted set of records.\nThus when presenting the posts to the user the tree structure has to be reconstructed.... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.330278+00:00 |
go/trinary | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | trinary | go/trinary | go test | [] | {"instructions.md": "# Instructions\n\nConvert a trinary number, represented as a string (e.g. '102012'), to its\ndecimal equivalent using first principles.\n\nThe program should consider strings specifying an invalid trinary as the\nvalue 0.\n\nTrinary numbers contain three symbols: 0, 1, and 2.\n\nThe last place in a... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.330399+00:00 |
go/two-bucket | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | two-bucket | go/two-bucket | go test | [] | {"instructions.append.md": "# Implementation\n\nIn package twobucket, implement a Go func, Solve, with\nthe following signature:\n\n```\nfunc Solve(sizeBucketOne,\n\tsizeBucketTwo,\n\tgoalAmount int,\n\tstartBucket string) (goalBucket string, numSteps, otherBucketLevel int, e error)\n```\nSolve returns four values: the... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.330628+00:00 |
go/variable-length-quantity | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | variable-length-quantity | go/variable-length-quantity | go test | [] | {"instructions.md": "# Instructions\n\nImplement variable length quantity encoding and decoding.\n\nThe goal of this exercise is to implement [VLQ][vlq] encoding/decoding.\n\nIn short, the goal of this encoding is to encode integer values in a way that would save bytes.\nOnly the first 7 bits of each byte are significa... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.330878+00:00 |
go/word-search | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | word-search | go/word-search | go test | [] | {"instructions.md": "# Instructions\n\nIn word search puzzles you get a square of letters and have to find specific words in them.\n\nFor example:\n\n```text\njefblpepre\ncamdcimgtc\noivokprjsm\npbwasqroua\nrixilelhrs\nwolcqlirpc\nscreeaumgr\nalxhpburyi\njalaycalmp\nclojurermt\n```\n\nThere are several programming lang... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.331187+00:00 |
go/wordy | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | wordy | go/wordy | go test | [] | {"instructions.md": "# Instructions\n\nParse and evaluate simple math word problems returning the answer as an integer.\n\n## Iteration 0 — Numbers\n\nProblems with no operations simply evaluate to the number given.\n\n> What is 5?\n\nEvaluates to 5.\n\n## Iteration 1 — Addition\n\nAdd two numbers together.\n\n> What i... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.331318+00:00 |
go/zebra-puzzle | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | go | zebra-puzzle | go/zebra-puzzle | go test | [] | {"instructions.append.md": "# Implementation\n\nDefine a single function, SolvePuzzle, which returns a solution\ncontaining two strings, whose values are the answers to the\nzebra-puzzle questions \"Who drinks water?\" and \"Who owns the Zebra?\".\nEach answer will be one of the resident's nationalities:\nEnglishman, S... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:03:57.331467+00:00 |
java/affine-cipher | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | affine-cipher | java/affine-cipher | ./gradlew test | [] | {"instructions.append.md": "# Instructions append\n\nPlease notice that the `%` operator is not equivalent to the one described in the problem description\n([see Wikipedia entry for Modulo operation](https://en.wikipedia.org/wiki/Modulo_operation)).\n", "instructions.md": "# Instructions\n\nCreate an implementation of ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.645095+00:00 |
java/all-your-base | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | all-your-base | java/all-your-base | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nConvert a sequence of digits in one base, representing a number, into a sequence of digits in another base, representing the same number.\n\n~~~~exercism/note\nTry to implement the conversion yourself.\nDo not use something else to perform the conversion for you.\n~~~~\n\n## About... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.645473+00:00 |
java/alphametics | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | alphametics | java/alphametics | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGiven an alphametics puzzle, find the correct solution.\n\n[Alphametics][alphametics] is a puzzle where letters in words are replaced with numbers.\n\nFor example `SEND + MORE = MONEY`:\n\n```text\n S E N D\n M O R E +\n-----------\nM O N E Y\n```\n\nReplacing these with valid n... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.645738+00:00 |
java/bank-account | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | bank-account | java/bank-account | ./gradlew test | [] | {"instructions.append.md": "# Instructions append\n\nThis exercise introduces [concurrency][oracle-docs-concurrency].\nTo pass the last test you might find the [`synchronized` keyword or locks][oracle-docs-synchronized] useful.\n\nProblems arising from running code concurrently are often intermittent because they depen... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.646000+00:00 |
java/book-store | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | book-store | java/book-store | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nTo try and encourage more sales of different books from a popular 5 book series, a bookshop has decided to offer discounts on multiple book purchases.\n\nOne copy of any of the five books costs $8.\n\nIf, however, you buy two different books, you get a 5% discount on those two boo... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.646372+00:00 |
java/bottle-song | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | bottle-song | java/bottle-song | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nRecite the lyrics to that popular children's repetitive song: Ten Green Bottles.\n\nNote that not all verses are identical.\n\n```text\nTen green bottles hanging on the wall,\nTen green bottles hanging on the wall,\nAnd if one green bottle should accidentally fall,\nThere'll be ni... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.646565+00:00 |
java/bowling | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | bowling | java/bowling | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nScore a bowling game.\n\nBowling is a game where players roll a heavy ball to knock down pins arranged in a triangle.\nWrite code to keep track of the score of a game of bowling.\n\n## Scoring Bowling\n\nThe game consists of 10 frames.\nA frame is composed of one or two ball throw... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.646785+00:00 |
java/change | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | change | java/change | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nCorrectly determine the fewest number of coins to be given to a customer such that the sum of the coins' value would equal the correct amount of change.\n\n## For example\n\n- An input of 15 with [1, 5, 10, 25, 100] should return one nickel (5) and one dime (10) or [5, 10]\n- An i... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.646971+00:00 |
java/circular-buffer | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | circular-buffer | java/circular-buffer | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nA circular buffer, cyclic buffer or ring buffer is a data structure that uses a single, fixed-size buffer as if it were connected end-to-end.\n\nA circular buffer first starts empty and of some predefined length.\nFor example, this is a 7-element buffer:\n\n```text\n[ ][ ][ ][ ][ ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.647289+00:00 |
java/connect | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | connect | java/connect | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nCompute the result for a game of Hex / Polygon.\n\nThe abstract boardgame known as [Hex][hex] / Polygon / CON-TAC-TIX is quite simple in rules, though complex in practice.\nTwo players place stones on a parallelogram with hexagonal fields.\nThe player to connect his/her stones to ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.647591+00:00 |
java/custom-set | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | custom-set | java/custom-set | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nCreate a custom set type.\n\nSometimes it is necessary to define a custom data structure of some type, like a set.\nIn this exercise you will define your own set.\nHow it works internally doesn't matter, as long as it behaves like a set of unique elements.\n"} | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.647883+00:00 |
java/dominoes | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | dominoes | java/dominoes | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nMake a chain of dominoes.\n\nCompute a way to order a given set of dominoes in such a way that they form a correct domino chain (the dots on one half of a stone match the dots on the neighboring half of an adjacent stone) and that dots on the halves of the stones which don't have ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.648067+00:00 |
java/food-chain | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | food-chain | java/food-chain | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGenerate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'.\n\nWhile you could copy/paste the lyrics, or read them from a file, this problem is much more interesting if you approach it algorithmically.\n\nThis is a [cumulative song][cumulative-song] of unknown origin... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.648253+00:00 |
java/forth | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | forth | java/forth | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nImplement an evaluator for a very simple subset of Forth.\n\n[Forth][forth]\nis a stack-based programming language.\nImplement a very basic evaluator for a small subset of Forth.\n\nYour evaluator has to support the following words:\n\n- `+`, `-`, `*`, `/` (integer arithmetic)\n- ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.648413+00:00 |
java/go-counting | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | go-counting | java/go-counting | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nCount the scored points on a Go board.\n\nIn the game of go (also known as baduk, igo, cờ vây and wéiqí) points are gained by completely encircling empty intersections with your stones.\nThe encircled intersections of a player are known as its territory.\n\nCalculate the territory... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.648561+00:00 |
java/hangman | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | hangman | java/hangman | ./gradlew test | [] | {"instructions.append.md": "# Hints\n\nOne main aspect of Functional Programming is to have side-effect free functions, not to have to wonder that hidden objects a function has changed. \n\nWith Reactive Programming, instead of having a component actively looking for work, this work is pushed to the component. This is... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.648747+00:00 |
java/house | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | house | java/house | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nRecite the nursery rhyme 'This is the House that Jack Built'.\n\n> [The] process of placing a phrase of clause within another phrase of clause is called embedding.\n> It is through the processes of recursion and embedding that we are able to take a finite number of forms (words an... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.648898+00:00 |
java/kindergarten-garden | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | kindergarten-garden | java/kindergarten-garden | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nYour task is to, given a diagram, determine which plants each child in the kindergarten class is responsible for.\n\nThere are 12 children in the class:\n\n- Alice, Bob, Charlie, David, Eve, Fred, Ginny, Harriet, Ileana, Joseph, Kincaid, and Larry.\n\nFour different types of seeds... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.649053+00:00 |
java/mazy-mice | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | mazy-mice | java/mazy-mice | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nYour task is to generate the perfect mazes for Mickey and Minerva — those with only one solution and no isolated sections.\nHere's what you need to know:\n\n- The maze has a rectangular shape with an opening at the start and end.\n- The maze has rooms and passages, which intersect... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.649246+00:00 |
java/ocr-numbers | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | ocr-numbers | java/ocr-numbers | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGiven a 3 x 4 grid of pipes, underscores, and spaces, determine which number is represented, or whether it is garbled.\n\n## Step One\n\nTo begin with, convert a simple binary font to a string containing 0 or 1.\n\nThe binary font uses pipes and underscores, four rows high and thr... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.649695+00:00 |
java/palindrome-products | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | palindrome-products | java/palindrome-products | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nDetect palindrome products in a given range.\n\nA palindromic number is a number that remains the same when its digits are reversed.\nFor example, `121` is a palindromic number but `112` is not.\n\nGiven a range of numbers, find the largest and smallest palindromes which\nare prod... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.650401+00:00 |
java/phone-number | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | phone-number | java/phone-number | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nClean up user-entered phone numbers so that they can be sent SMS messages.\n\nThe **North American Numbering Plan (NANP)** is a telephone numbering system used by many countries in North America like the United States, Canada or Bermuda.\nAll NANP-countries share the same internat... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.650795+00:00 |
java/pig-latin | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | pig-latin | java/pig-latin | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nYour task is to translate text from English to Pig Latin.\nThe translation is defined using four rules, which look at the pattern of vowels and consonants at the beginning of a word.\nThese rules look at each word's use of vowels and consonants:\n\n- vowels: the letters `a`, `e`, ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.651130+00:00 |
java/poker | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | poker | java/poker | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nPick the best hand(s) from a list of poker hands.\n\nSee [Wikipedia][poker-hands] for an overview of poker hands.\n\n[poker-hands]: https://en.wikipedia.org/wiki/List_of_poker_hands\n"} | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.651309+00:00 |
java/pov | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | pov | java/pov | ./gradlew test | [] | {"instructions.append.md": "# Instructions append\n\n## Implementation Notes\n\nTree object have two attributes:\n\n- `String` label\n- `List<Tree>` children\n\nThe test program creates trees by repeated application of\n`Tree.of` builder function. For example, the statement\n\n```java\nTree tree = Tree.of(\"a\", List.o... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.651690+00:00 |
java/protein-translation | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | protein-translation | java/protein-translation | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nTranslate RNA sequences into proteins.\n\nRNA can be broken into three-nucleotide sequences called codons, and then translated to a protein like so:\n\nRNA: `\"AUGUUUUCU\"` => translates to\n\nCodons: `\"AUG\", \"UUU\", \"UCU\"`\n=> which become a protein with the following sequen... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.651963+00:00 |
java/pythagorean-triplet | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | pythagorean-triplet | java/pythagorean-triplet | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nA Pythagorean triplet is a set of three natural numbers, {a, b, c}, for which,\n\n```text\na² + b² = c²\n```\n\nand such that,\n\n```text\na < b < c\n```\n\nFor example,\n\n```text\n3² + 4² = 5².\n```\n\nGiven an input integer N, find all Pythagorean triplets for which `a + b + c ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.652228+00:00 |
java/queen-attack | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | queen-attack | java/queen-attack | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGiven the position of two queens on a chess board, indicate whether or not they are positioned so that they can attack each other.\n\nIn the game of chess, a queen can attack pieces which are on the same row, column, or diagonal.\n\nA chessboard can be represented by an 8 by 8 arr... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.652482+00:00 |
java/rational-numbers | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | rational-numbers | java/rational-numbers | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nA rational number is defined as the quotient of two integers `a` and `b`, called the numerator and denominator, respectively, where `b != 0`.\n\n~~~~exercism/note\nNote that mathematically, the denominator can't be zero.\nHowever in many implementations of rational numbers, you wi... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.652732+00:00 |
java/react | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | react | java/react | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nImplement a basic reactive system.\n\nReactive programming is a programming paradigm that focuses on how values are computed in terms of each other to allow a change to one value to automatically propagate to other values, like in a spreadsheet.\n\nImplement a basic reactive syste... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.652895+00:00 |
java/resistor-color-trio | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | resistor-color-trio | java/resistor-color-trio | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nIf you want to build something using a Raspberry Pi, you'll probably use _resistors_.\nFor this exercise, you need to know only three things about them:\n\n- Each resistor has a resistance value.\n- Resistors are small - so small in fact that if you printed the resistance value on... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.653201+00:00 |
java/rest-api | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | rest-api | java/rest-api | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nImplement a RESTful API for tracking IOUs.\n\nFour roommates have a habit of borrowing money from each other frequently, and have trouble remembering who owes whom, and how much.\n\nYour task is to implement a simple [RESTful API][restful-wikipedia] that receives [IOU][iou]s as PO... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.653464+00:00 |
java/satellite | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | satellite | java/satellite | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nImagine you need to transmit a binary tree to a satellite approaching Alpha Centauri and you have limited bandwidth.\nSince the tree has no repeating items it can be uniquely represented by its [pre-order and in-order traversals][wiki].\n\nWrite the software for the satellite to r... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.653709+00:00 |
java/series | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | series | java/series | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGiven a string of digits, output all the contiguous substrings of length `n` in that string in the order that they appear.\n\nFor example, the string \"49142\" has the following 3-digit series:\n\n- \"491\"\n- \"914\"\n- \"142\"\n\nAnd the following 4-digit series:\n\n- \"4914\"\n... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.653831+00:00 |
java/sgf-parsing | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | sgf-parsing | java/sgf-parsing | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nParsing a Smart Game Format string.\n\n[SGF][sgf] is a standard format for storing board game files, in particular go.\n\nSGF is a fairly simple format. An SGF file usually contains a single\ntree of nodes where each node is a property list. The property list\ncontains key value p... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.653977+00:00 |
java/simple-linked-list | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | simple-linked-list | java/simple-linked-list | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nWrite a prototype of the music player application.\n\nFor the prototype, each song will simply be represented by a number.\nGiven a range of numbers (the song IDs), create a singly linked list.\n\nGiven a singly linked list, you should be able to reverse the list to play the songs... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.654330+00:00 |
java/state-of-tic-tac-toe | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | state-of-tic-tac-toe | java/state-of-tic-tac-toe | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nIn this exercise, you're going to implement a program that determines the state of a [tic-tac-toe][] game.\n(_You may also know the game as \"noughts and crosses\" or \"Xs and Os\"._)\n\nThe game is played on a 3×3 grid.\nPlayers take turns to place `X`s and `O`s on the grid.\nThe... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.654566+00:00 |
java/transpose | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | transpose | java/transpose | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGiven an input text output it transposed.\n\nRoughly explained, the transpose of a matrix:\n\n```text\nABC\nDEF\n```\n\nis given by:\n\n```text\nAD\nBE\nCF\n```\n\nRows become columns and columns become rows.\nSee [transpose][].\n\nIf the input has rows of different lengths, this ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.654715+00:00 |
java/twelve-days | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | twelve-days | java/twelve-days | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nYour task in this exercise is to write code that returns the lyrics of the song: \"The Twelve Days of Christmas.\"\n\n\"The Twelve Days of Christmas\" is a common English Christmas carol.\nEach subsequent verse of the song builds on the previous verse.\n\nThe lyrics your code retu... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.654852+00:00 |
java/two-bucket | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | two-bucket | java/two-bucket | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nGiven two buckets of different size and which bucket to fill first, determine how many actions are required to measure an exact number of liters by strategically transferring fluid between the buckets.\n\nThere are some rules that your solution must follow:\n\n- You can only do on... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.655139+00:00 |
java/variable-length-quantity | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | variable-length-quantity | java/variable-length-quantity | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nImplement variable length quantity encoding and decoding.\n\nThe goal of this exercise is to implement [VLQ][vlq] encoding/decoding.\n\nIn short, the goal of this encoding is to encode integer values in a way that would save bytes.\nOnly the first 7 bits of each byte are significa... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.655261+00:00 |
java/word-search | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | word-search | java/word-search | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nIn word search puzzles you get a square of letters and have to find specific words in them.\n\nFor example:\n\n```text\njefblpepre\ncamdcimgtc\noivokprjsm\npbwasqroua\nrixilelhrs\nwolcqlirpc\nscreeaumgr\nalxhpburyi\njalaycalmp\nclojurermt\n```\n\nThere are several programming lang... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.655388+00:00 |
java/wordy | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | wordy | java/wordy | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nParse and evaluate simple math word problems returning the answer as an integer.\n\n## Iteration 0 — Numbers\n\nProblems with no operations simply evaluate to the number given.\n\n> What is 5?\n\nEvaluates to 5.\n\n## Iteration 1 — Addition\n\nAdd two numbers together.\n\n> What i... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.655673+00:00 |
java/zebra-puzzle | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | zebra-puzzle | java/zebra-puzzle | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nYour task is to solve the Zebra Puzzle to find the answer to these two questions:\n\n- Which of the residents drinks water?\n- Who owns the zebra?\n\n## Puzzle\n\nThe following 15 statements are all known to be true:\n\n1. There are five houses.\n2. The Englishman lives in the red... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.655826+00:00 |
java/zipper | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | java | zipper | java/zipper | ./gradlew test | [] | {"instructions.md": "# Instructions\n\nCreating a zipper for a binary tree.\n\n[Zippers][zipper] are a purely functional way of navigating within a data structure and manipulating it.\nThey essentially contain a data structure and a pointer into that data structure (called the focus).\n\nFor example given a rose tree (... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:03.655957+00:00 |
javascript/affine-cipher | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | affine-cipher | javascript/affine-cipher | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nCreate an implementation of the affine cipher, an ancient encryption system created in the Middle East.\n\nThe affine cipher is a type of monoalphabetic substitution cipher.\nEach character is mapped to its numeric equivalent, encrypted with a mathematical function and then conver... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.693792+00:00 |
javascript/alphametics | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | alphametics | javascript/alphametics | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nGiven an alphametics puzzle, find the correct solution.\n\n[Alphametics][alphametics] is a puzzle where letters in words are replaced with numbers.\n\nFor example `SEND + MORE = MONEY`:\n\n```text\n S E N D\n M O R E +\n-----------\nM O N E Y\n```\n\nReplacing these with valid n... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.694081+00:00 |
javascript/beer-song | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | beer-song | javascript/beer-song | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nRecite the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall.\n\nNote that not all verses are identical.\n\n```text\n99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n\n98 ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.694815+00:00 |
javascript/binary | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | binary | javascript/binary | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nConvert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles.\n\nImplement binary to decimal conversion. Given a binary input\nstring, your program should produce a decimal output. The\nprogram should handle invalid inputs.\n\n... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.695138+00:00 |
javascript/book-store | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | book-store | javascript/book-store | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.append.md": "# Implementation\n\nDefine a function - `cost` - that calculates the cost for a given list of books based on defined discounts.\n\n`cost` will return the total cost (after discounts) in cents.\nFor example, for a single book, the cost is 800 cents, which equals $8.00.\nOnly integer calculati... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.695426+00:00 |
javascript/bottle-song | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | bottle-song | javascript/bottle-song | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nRecite the lyrics to that popular children's repetitive song: Ten Green Bottles.\n\nNote that not all verses are identical.\n\n```text\nTen green bottles hanging on the wall,\nTen green bottles hanging on the wall,\nAnd if one green bottle should accidentally fall,\nThere'll be ni... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.695645+00:00 |
javascript/bowling | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | bowling | javascript/bowling | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nScore a bowling game.\n\nBowling is a game where players roll a heavy ball to knock down pins arranged in a triangle.\nWrite code to keep track of the score of a game of bowling.\n\n## Scoring Bowling\n\nThe game consists of 10 frames.\nA frame is composed of one or two ball throw... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.695929+00:00 |
javascript/complex-numbers | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | complex-numbers | javascript/complex-numbers | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nA complex number is a number in the form `a + b * i` where `a` and `b` are real and `i` satisfies `i^2 = -1`.\n\n`a` is called the real part and `b` is called the imaginary part of `z`.\nThe conjugate of the number `a + b * i` is the number `a - b * i`.\nThe absolute value of a co... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.696078+00:00 |
javascript/connect | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | connect | javascript/connect | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nCompute the result for a game of Hex / Polygon.\n\nThe abstract boardgame known as [Hex][hex] / Polygon / CON-TAC-TIX is quite simple in rules, though complex in practice.\nTwo players place stones on a parallelogram with hexagonal fields.\nThe player to connect his/her stones to ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.696216+00:00 |
javascript/food-chain | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | food-chain | javascript/food-chain | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nGenerate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'.\n\nWhile you could copy/paste the lyrics, or read them from a file, this problem is much more interesting if you approach it algorithmically.\n\nThis is a [cumulative song][cumulative-song] of unknown origin... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.696741+00:00 |
javascript/forth | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | forth | javascript/forth | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nImplement an evaluator for a very simple subset of Forth.\n\n[Forth][forth]\nis a stack-based programming language.\nImplement a very basic evaluator for a small subset of Forth.\n\nYour evaluator has to support the following words:\n\n- `+`, `-`, `*`, `/` (integer arithmetic)\n- ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.697263+00:00 |
javascript/go-counting | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | go-counting | javascript/go-counting | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.append.md": "# Instructions append\n\n## Input format\n\nThe `board` parameter, representing the game board, is in the format of an array of strings.\n\n```javascript\n[' B ', ' B B ', 'B W B', ' W W ', ' W '];\n```\n\nEach character of a string represents a cell.\nThe valid values for a cell are:\n\... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.697514+00:00 |
javascript/grade-school | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | grade-school | javascript/grade-school | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nGiven students' names along with the grade that they are in, create a roster for the school.\n\nIn the end, you should be able to:\n\n- Add a student's name to the roster for a grade\n - \"Add Jim to grade 2.\"\n - \"OK.\"\n- Get a list of all students enrolled in a grade\n - \... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.697911+00:00 |
javascript/grep | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | grep | javascript/grep | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.append.md": "# Instructions append\n\n## Node process\n\nUnlike other exercises, `grep.js` is _not_ imported inside the test file `grep.spec.js`. Instead, it will be used as if it's an executable. To facilitate that, the `grep.js` file has been set-up with a shebang, and a comment that explains what this... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.698115+00:00 |
javascript/house | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | house | javascript/house | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nRecite the nursery rhyme 'This is the House that Jack Built'.\n\n> [The] process of placing a phrase of clause within another phrase of clause is called embedding.\n> It is through the processes of recursion and embedding that we are able to take a finite number of forms (words an... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.698324+00:00 |
javascript/killer-sudoku-helper | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | killer-sudoku-helper | javascript/killer-sudoku-helper | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nA friend of yours is learning how to solve Killer Sudokus (rules below) but struggling to figure out which digits can go in a cage.\nThey ask you to help them out by writing a small program that lists all valid combinations for a given cage, and any constraints that affect the cag... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.698622+00:00 |
javascript/ledger | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | ledger | javascript/ledger | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nRefactor a ledger printer.\n\nThe ledger exercise is a refactoring exercise.\nThere is code that prints a nicely formatted ledger, given a locale (American or Dutch) and a currency (US dollar or euro).\nThe code however is rather badly written, though (somewhat surprisingly) it co... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.698885+00:00 |
javascript/list-ops | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | list-ops | javascript/list-ops | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.append.md": "# Instructions append\n\nUsing core language features to build and deconstruct arrays via destructuring, and using the array literal `[]` are allowed, but no functions from the `Array.prototype` should be used.\n", "instructions.md": "# Instructions\n\nImplement basic list operations.\n\nIn ... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.699076+00:00 |
javascript/lodash | Your job is to complete a coding exercise described the markdown files inside the `docs` directory.
A file with the implementation stubbed out has been created for you, along with a test file (the tests should be failing initially).
To successfully complete the exercise, you must pass all the tests in the test file.
... | javascript | lodash | javascript/lodash | pnpm test | [
"pnpm install --frozen-lockfile"
] | {"instructions.md": "# Instructions\n\nIn this exercise, you'll implement a deep cloning function similar to Lodash's `_.cloneDeep()`. Deep cloning creates a copy of an object or array where all nested objects and arrays are also copied, breaking all references to the original objects.\n\n## Task\n\nThe `cloneDeep` fun... | RooCodeInc/Roo-Code-Evals | 567d4aa9d2ce33d07c20a8c7e17450ee20152473 | 2025-09-09T17:04:07.699255+00:00 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.