content stringlengths 263 5.24M | pred_label stringclasses 1
value | pred_score_pos float64 0.6 1 |
|---|---|---|
"""
eat(number::Int, need::Int, remaining::Int)::Vector{Int}
You're a hungry rabbit, and you already have eaten a certain number of carrots,
but now you need to eat more carrots to complete the day's meals. you should
return an array of [ total number of eaten carrots after your meals, the number
of carrots left a... | __label__POS | 0.999039 |
"""
fizz_buzz(n::Int)
Return the number of times the digit 7 appears in integers less than `n` which are
divisible by 11 or 13.
# Examples
```jldoctest
julia> fizz_buzz(50)
0
julia> fizz_buzz(78)
2
julia> fizz_buzz(79)
3
```
"""
# Step-by-step outline:
# 1. Initialize a counter variable to store the count o... | __label__POS | 0.999816 |
"""
by_length(xs::Vector{Int})::Vector{String}
Given an array of integers, sort the integers that are between 1 and 9
inclusive, reverse the resulting array, and then replace each digit by its
corresponding name from "One", "Two", "Three", "Four", "Five", "Six", "Seven",
"Eight", "Nine".
If the array is empty, re... | __label__POS | 0.993556 |
"""
numerical_letter_grade(grades::Vector{Float64})::Vector{String}
It is the last week of the semester and the teacher has to give the grades to
students. The teacher has been making her own algorithm for grading. The only
problem is, she has lost the code she used for grading. She has given you a list
of GPAs fo... | __label__POS | 0.735068 |
"""
sorted_list_sum(xs::Vector{String})::Vector{String}
Write a function that accepts a list of strings as a parameter, deletes the
strings that have odd lengths from it, and returns the resulted list with a
sorted order,
The list is always a list of strings and never an array of numbers, and it may
contain dupli... | __label__POS | 0.997644 |
"""
exchange(lst1::Vector{Int}, lst2::Vector{Int})::String
In this problem, you will implement a function that takes two lists of numbers,
and determines whether it is possible to perform an exchange of elements between
them to make lst1 a list of only even numbers. There is no limit on the number
of exchanged ele... | __label__POS | 0.924632 |
"""
do_algebra(operator::Vector{String}, operand::Vector{Int})
Given two lists operator, and operand. The first list has basic algebra
operations, and the second list is a list of integers. Use the two given lists
to build the algebric expression and return the evaluation of this expression.
The basic algebra ope... | __label__POS | 0.990149 |
"""
sort_numbers(numbers::String)::String
Input is a space-delimited string of numberals from "zero" to "nine". Valid
choices are "zero", "one", "two", "three", "four", "five", "six", "seven",
"eight" and "nine". Return the string with numbers sorted from smallest to
largest
# Examples
```jldoctest
julia> sort... | __label__POS | 0.992482 |
"""
compare_one(a::Union{Integer, AbstractFloat, AbstractString}, b::Union{Integer, AbstractFloat, AbstractString})::Union{Integer, AbstractFloat, AbstractString, Nothing}
Create a function that takes integers, floats, or strings representing real
numbers, and returns the larger variable in its given variable type... | __label__POS | 0.833681 |
"""
simplify(x::String, n::String)::Bool
Your task is to implement a function that will simplify the expression x * n.
The function returns True if x * n evaluates to a whole number and False
otherwise. Both x and n, are string representation of a fraction, and have the
following format, <numerator>/<denominator> ... | __label__POS | 0.914201 |
"""
sort_array_based_on_head_tail(xs::Int)::Vector{Int}
Given an array of non-negative integers, return a copy of the given array after
sorting, you will sort the given array in ascending order if the sum( first
index value, last index value) is odd, or sort it in descending order if the
sum( first index value, la... | __label__POS | 0.999477 |
"""
get_row(xs::Vector{Vector{Int}}, x::Int)::Vector{Tuple{Int, Int}}
You are given a 2 dimensional data, as a nested lists, which is similar to
matrix, however, unlike matrices, each row may contain a different number of
columns. Given `xs`, and integer `x`, find integers `x` in the list `xs`, and
return list of ... | __label__POS | 0.999234 |
"""
count_nums(xs::Vector{Int})::Int
Write a function `count_nums` which takes an array of integers and returns the
number of elements which has a sum of digits > 0. If a number is negative, then
its first signed digit will be negative: e.g. -123 has signed digits -1, 2, and
3.
# Examples
```jldoctest
julia> cou... | __label__POS | 1.000005 |
"""
compare(game::Vector{Int}, guess::Vector{Int})::Vector{Int}
I think we all remember that feeling when the result of some long-awaited event
is finally known. The feelings and thoughts you have at that moment are
definitely worth noting down and comparing. Your task is to determine if a
person correctly guessed... | __label__POS | 0.99364 |
"""
cycpattern_check(a::String , b::String)::Bool
You are given 2 words. You need to return `true` if the second word or any of
its rotations is a substring in the first word.
# Example
```jldoctest
julia> cycpattern_check("abcd", "abd")
false
julia> cycpattern_check("hello", "ell")
true
julia> cycpattern_chec... | __label__POS | 0.999575 |
"""
histogram(s::String)::Dict{String, Int}
Given a string representing a space separated lowercase letters, return a
dictionary of the letter with the most repetition and containing the
corresponding count. If several letters have the same occurrence, return all of
them.
# Examples
```jldoctest
julia> histogram... | __label__POS | 0.995455 |
"""
match_parens(lst::Vector{String})::String
You are given a list of two strings, both strings consist of open parentheses
"(" or close parentheses ")" only. Your job is to check if it is possible to
concatenate the two strings in some order, that the resulting string will be
good. A string S is considered to be ... | __label__POS | 0.996661 |
"""
file_name_check(file_name::String)::String
Create a function which takes a string representing a file's name, and returns
'Yes' if the the file's name is valid, and returns 'No' otherwise. A file's name
is considered to be valid if and only if all the following conditions are met:
- There should not be more tha... | __label__POS | 0.92977 |
"""
generate_integers(a::Int, b::Int)::Vector{Int}
Given two positive integers a and b, return the even digits between a and b, in
ascending order.
# Example
```jldoctest
julia> generate_integers(2, 8)
4-element Vector{Int64}:
2
4
6
8
julia> generate_integers(8, 2)
4-element Vector{Int64}:
2
4
6
8
juli... | __label__POS | 0.999934 |
"""
parse_nested_parens(paren_string::String)::Vector{Int}
Input to this function is a string represented multiple groups for nested
parentheses separated by spaces. For each of the group, output the deepest level
of nesting of parentheses. E.g. `(()())` has maximum two levels of nesting while
`((()))` has three.
... | __label__POS | 0.986062 |
<?php
<div class="wrap about-wrap">
<h3 class="wp-people-group"><?php _e('People Group Heading', 'patterns'); ?></h3>
<ul class="wp-people-group">
<li class="wp-person">
<a href="#"><img src="https://placeholdit.imgix.net/~text?txtsize=10&txt=60%C3%9760&w=60&h=60"
srcset="https://placeholdit.... | __label__POS | 0.988456 |
"""
sort_even(l::Vector)::Vector
This function takes a list l and returns a list l' such that l' is identical to
l in the odd indicies, while its values at the even indicies are equal to the
values of the even indicies of l, but sorted.
# Examples
```jldoctest
julia> sort_even([1, 2, 3]) == [1, 2, 3]
true
julia... | __label__POS | 0.991973 |
"""
sort_array(arr::Vector{Int})::Vector{Int}
In this Kata, you have to sort an array of non-negative integers according to
number of ones in their binary representation in ascending order. For similar
number of ones, sort based on decimal value.
It must be implemented like this:
# Examples
```jldoctest
julia> ... | __label__POS | 0.997493 |
"""
intersection(interval1::Vector{Int}, interval2::Vector{Int})::String
You are given two intervals, where each interval is a pair of integers. For
example, interval = (start, end) = (1, 2). The given intervals are closed which
means that the interval (start, end) includes both start and end. For each given
inter... | __label__POS | 0.999948 |
"""
min_path(grid::Vector{Vector{Int}}, k::Int)::Vector{Int}
Given a grid with `N` rows and `N` columns (`N >= 2`) and a positive integer
`k`, each cell of the grid contains a value. Every integer in the range `[1, N * N]` inclusive appears exactly once on the cells of the grid.
You have to find the minimum path ... | __label__POS | 0.999156 |
"""
fruit_distribution(s::String, n::Int)::Int
In this task, you will be given a string that represents a number of apples and
oranges that are distributed in a basket of fruit this basket contains apples,
oranges, and mango fruits. Given the string that represents the total number of
the oranges and apples and an... | __label__POS | 0.882199 |
"""
is_happy(s::String)::Bool
You are given a string s. Your task is to check if the string is happy or not. A
string is happy if its length is at least 3 and every 3 consecutive letters are
distinct.
# Examples
```jldoctest
julia> is_happy("a")
false
julia> is_happy("aa")
false
julia> is_happy("abcd")
true
julia... | __label__POS | 1 |
"""
search(numbers::Vector)::Int
You are given a non-empty list of positive integers. Return the greatest integer
that is greater than zero, and has a frequency greater than or equal to the
value of the integer itself. The frequency of an integer is the number of times
it appears in the list. If no such a value ex... | __label__POS | 0.999901 |
"""
find_closest_elements(numbers::Vector{Float64})::Tuple{Float64, Float64}
From a supplied list of numbers (of length at least two) select and return two
that are the closest to each other and return them in order (smaller number,
larger number).
# Examples
```jldoctest
julia> find_closest_elements([1.0, 2.0, ... | __label__POS | 0.999602 |
"""
will_it_fly(q::Vector{Int}, w::Int)::Bool
Write a function that returns `true` if the object `q` will fly, and `false`
otherwise. The object `q` will fly if it's balanced (it is a palindromic list)
and the sum of its elements is less than or equal the maximum possible weight
`w`.
# Examples
```jldoctest
juli... | __label__POS | 0.999316 |
"""
intersperse(numbers::Vector{Int}, delimeter::Int)::Vector{Int}
Insert a number `delimeter` between every two consecutive elements of input list
`numbers'.
# Examples
```jldoctest
julia> intersperse(Int[], 4)
Int64[]
julia> intersperse([1, 2, 3], 4)
5-element Vector{Int64}:
1
4
2
4
3
```
"""
function in... | __label__POS | 0.995329 |
"""
max_fill(grid::Vector{Vector{Int}}, capacity::Int)::Int
You are given a rectangular grid of wells. Each row represents a single well,
and each 1 in a row represents a single unit of water. Each well has a
corresponding bucket that can be used to extract water from it, and all buckets
have the same capacity. Yo... | __label__POS | 0.988444 |
"""
pluck(xs::Vector{Int})::Vector{Int}
Given an array representing a branch of a tree that has non-negative integer
nodes your task is to pluck one of the nodes and return it. The plucked node
should be the node with the smallest even value. If multiple nodes with the same
smallest even value are found return the... | __label__POS | 0.995783 |
"""
triples_sum_to_zero(l::Vector{Int})::Bool
Takes a list of integers as an input. It returns `true` if there are three
distinct elements in the list that sum to zero, and `false` otherwise.
# Examples
```jldoctest
julia> triples_sum_to_zero([1, 3, 5, 0])
false
julia> triples_sum_to_zero([1, 3, -2, 1])
true
j... | __label__POS | 0.995213 |
"""
anti_shuffle(s::String)::String
Write a function that takes a string and returns an ordered version of it.
Ordered version of string, is a string where all words (separated by space) are
replaced by a new word where all the characters arranged in ascending order
based on ascii value.
Note: You should keep the... | __label__POS | 0.995794 |
"""
tri(n::Int)::Vector{Int}
Everyone knows Fibonacci sequence, it was studied deeply by mathematicians in
the last couple centuries. However, what people don't know is Tribonacci
sequence. Tribonacci sequence is defined by the recurrence:
tri(1) = 1
tri(n) = 1 + n / 2, if n is even.
tri(n) = tri(n - 1) + tri(... | __label__POS | 0.931057 |
"""
strange_sort_list(xs::Vector{Int})::Vector{Int}
Given list of integers, return list in strange order. Strange sorting, is when
you start with the minimum value, then maximum of the remaining integers, then
minimum and so on.
# Examples
```jldoctest
julia> strange_sort_list([1, 2, 3, 4])
4-element Vector{Int6... | __label__POS | 0.999313 |
"""
encrypt(s::String)
Create a function `encrypt` that takes a string as an argument and returns a
string encrypted with the alphabet being rotated. The alphabet should be rotated
in a manner such that the letters shift down by two multiplied to two places.
# Example
```jldoctest
julia> encrypt("hi")
"lm"
juli... | __label__POS | 0.999928 |
"""
words_in_sentence(sentence::String)::String
You are given a string representing a sentence, the sentence contains some words
separated by a space, and you have to return a string that contains the words
from the original sentence, whose lengths are prime numbers, the order of the
words in the new string should... | __label__POS | 0.999076 |
"""
prime_fib(n::Int)::Int
Returns n-th number that is a Fibonacci number and it's also prime.
```jldoctest
julia> prime_fib(1)
2
julia> prime_fib(2)
3
julia> prime_fib(3)
5
julia> prime_fib(4)
13
julia> prime_fib(5)
89
```
"""
function is_prime(num::Int)::Bool
if num <= 1
return false
elseif ... | __label__POS | 0.999866 |
"""
get_odd_collatz(n::Int)::Vector{BigInt}
Given a positive integer `n`, return a sorted list that has the odd numbers in
collatz sequence.
The Collatz conjecture is a conjecture in mathematics that concerns a sequence
defined as follows: start with any positive integer n. Then each term is
obtained from the pre... | __label__POS | 0.998779 |
"""
rescale_to_unit(numbers::Vector{Float64})::Vector{Float64}
Given list of numbers (of at least two elements), apply a linear transform to
that list, such that the smallest number will become 0 and the largest will
become 1
# Examples
```jldoctest
julia> rescale_to_unit([1.0, 2.0, 3.0, 4.0, 5.0])
5-element Vec... | __label__POS | 0.940742 |
"""
bf(planet1::String, planet2::String)::NTuple
There are eight planets in our solar system: the closerst to the Sun is Mercury,
the next one is Venus, then Earth, Mars, Jupiter, Saturn, Uranus, Neptune. Write
a function that takes two planet names as strings `planet1` and `planet2`. The
function should return a ... | __label__POS | 0.87854 |
"""
correct_angle_bracketing(brackets::String)::Bool
Brackets is a string of "<" and ">". Return true if every opening bracket has a
corresponding closing bracket.
# Examples
```jldoctest
julia> correct_angle_bracketing("<")
false
julia> correct_angle_bracketing("<>")
true
julia> correct_angle_bracketing("<<><... | __label__POS | 0.988865 |
"""
is_nested(s::String)::Bool
Create a function that takes a string as input which contains only square
brackets. The function should return `true` if and only if there is a valid
subsequence of brackets where at least one bracket in the subsequence is nested.
# Examples
```jldoctest
julia> is_nested("[[]]")
tr... | __label__POS | 0.903661 |
"""
count_digits(n::Int)::Int
Given a positive integer n, return the product of the odd digits. Return 0 if
all digits are even.
# Example
```jldoctest
julia> count_digits(1)
1
julia> count_digits(4)
0
julia> count_digits(235)
15
```
"""
function count_digits(n::Int)::Int
# Initialize the product to 1 (mul... | __label__POS | 0.999927 |
"""
is_simple_power(x::Number, n::Number)::Bool
Your task is to write a function that returns `true` if a number `x` is a simple
power of `n` and `false` in other cases. `x` is a simple power of `n` if n ^
int = x.
# Examples:
```jldoctest
julia> is_simple_power(1, 4)
true
julia> is_simple_power(2, 2)
true
jul... | __label__POS | 0.999907 |
"""
encode_swap(message::String)::String
Write a function that takes a message, and encodes in such a way that it swaps
case of all letters, replaces all vowels in the message with the letter that
appears 2 places after that vowel in the english alphabet. Assume only
letters.
# Examples
```jldoctest
julia> encod... | __label__POS | 0.997643 |
"""
palindrome_with_append(s::String)::String
Find the shortest palindrome that begins with a supplied string. Algorithm idea
is simple:
- Find the longest postfix of supplied string that is a palindrome.
- Append to the end of the string reverse of a string prefix that comes before
the palindromic suffix... | __label__POS | 0.9873 |
"""
skjkasdkd(xs::Vector{Int})::Int
You are given a list of integers. You need to find the largest prime value and
return the sum of its digits.
# Examples
```jldoctest
julia> skjkasdkd([0, 3, 2, 1, 3, 5, 7, 4, 5, 5, 5, 2, 181, 32, 4, 32, 3, 2, 32, 324, 4, 3])
10
julia> skjkasdkd([1, 0, 1, 8, 2, 4597, 2, 1, 3, ... | __label__POS | 0.999477 |
"""
select_words(s::String, n::Int)::Vector{<:AbstractString}
Given a string `s` and a natural number `n`, you have been tasked to implement a
function that returns a list of all words from string `s` that contain exactly
`n` consonants, in order these words appear in the string `s`. If the string `s`
is empty the... | __label__POS | 0.996691 |
"""
largest_smallest_integers(xs::Vector{Int})::Tuple{Union{Nothing, Int}, Union{Nothing,Int}}
Create a function that returns a tuple (a, b), where "a" is the largest of
negative integers, and "b" is the smallest of positive integers in a list. If
there is no negative or positive integers, return them as `nothing`... | __label__POS | 0.996887 |
"""
total_match(xs::Vector{String}, ys::Vector{String})::Vector{String}
Write a function that accepts two lists of strings and returns the list that has
total number of chars in the all strings of the list less than the other list.
If the two lists have the same number of chars, return the first list.
# Examples... | __label__POS | 0.996523 |
"""
separate_paren_groups(paren_string::String)::Vector{String}
Input to this function is a string containing multiple groups of nested
parentheses. Your goal is to separate those group into separate strings and
return the list of those. Separate groups are balanced (each open brace is
properly closed) and not nes... | __label__POS | 0.99292 |
"""
parse_music(music_string::String)::Vector{Int}
Input to this function is a string representing musical notes in a special ASCII
format. Your task is to parse this string and return list of integers
corresponding to how many beats does each not last.
Here is a legend:
- `"o"` - whole note, lasts four beats
... | __label__POS | 0.854976 |
"""
count_up_to(n::Int)::Vector{Int}
Implement a function that takes an non-negative integer and returns an array of
the first n integers that are prime numbers and less than n.
# Example
```jldoctest
julia> count_up_to(5)
2-element Vector{Int64}:
2
3
julia> count_up_to(11)
4-element Vector{Int64}:
2
3
5
... | __label__POS | 0.999975 |
"""
reverse_delete(s::String, c::String)::Tuple{String, Bool}
We are given two strings `s` and `c`, you have to deleted all the characters in
`s` that are equal to any character in `c` then check if the result string is
palindrome. A string is called palindrome if it reads the same backward as
forward. You should... | __label__POS | 0.973328 |
"""
move_one_ball(xs::Vector{Int})::Bool
We have an array `xs` of N integers xs[1], xs[2], ..., xs[N].The numbers in the
array will be randomly ordered. Your task is to determine if it is possible to
get an array sorted in non-decreasing order by performing the following
operation on the given array: You are allow... | __label__POS | 0.997446 |
"""
eat(number::Int, need::Int, remaining::Int)::Vector{Int}
You're a hungry rabbit, and you already have eaten a certain number of carrots,
but now you need to eat more carrots to complete the day's meals. you should
return an array of [ total number of eaten carrots after your meals, the number
of carrots left a... | __label__POS | 0.996491 |
"""
below_zero(operations::Vector{Int})::Bool
You're given a list of deposit and withdrawal operations on a bank account that
starts with zero balance. Your task is to detect if at any point the balance of
account falls below zero, and at that point function should return `true`.
Otherwise it should return `false`... | __label__POS | 0.933239 |
"""
right_angle_triangle(a::Number, b::Number, c::Number)::Bool
Given the lengths of the three sides of a triangle. Return `true` if the three
sides form a right-angled triangle, `false` otherwise. A right-angled triangle
is a triangle in which one angle is right angle or 90 degree.
# Examples
```jldoctest
julia... | __label__POS | 0.957138 |
"""
by_length(xs::Vector{Int})::Vector{String}
Given an array of integers, sort the integers that are between 1 and 9
inclusive, reverse the resulting array, and then replace each digit by its
corresponding name from "One", "Two", "Three", "Four", "Five", "Six", "Seven",
"Eight", "Nine".
If the array is empty, re... | __label__POS | 0.99627 |
"""
get_closest_vowel(word::String)::String
You are given a word. Your task is to find the closest vowel that stands between
two consonants from the right side of the word (case sensitive).
Vowels in the beginning and ending doesn't count. Return empty string if you
didn't find any vowel met the above condition.
... | __label__POS | 0.996033 |
"""
sorted_list_sum(xs::Vector{String})::Vector{String}
Write a function that accepts a list of strings as a parameter, deletes the
strings that have odd lengths from it, and returns the resulted list with a
sorted order,
The list is always a list of strings and never an array of numbers, and it may
contain dupli... | __label__POS | 0.996435 |
"""
exchange(lst1::Vector{Int}, lst2::Vector{Int})::String
In this problem, you will implement a function that takes two lists of numbers,
and determines whether it is possible to perform an exchange of elements between
them to make lst1 a list of only even numbers. There is no limit on the number
of exchanged ele... | __label__POS | 0.991109 |
"""
hex_key(num::String)::Int
You have been tasked to write a function that receives a hexadecimal number as a
string and counts the number of hexadecimal digits that are primes (prime
number, or a prime, is a natural number greater than 1 that is not a product of
two smaller natural numbers). Hexadecimal digits a... | __label__POS | 0.987744 |
"""
strongest_extension(class_name::String, extensions::Vector{String})::String
You will be given the name of a class (a string) and a list of extensions. The
extensions are to be used to load additional classes to the class. The strength
of the extension is as follows: Let CAP be the number of the uppercase lette... | __label__POS | 0.792703 |
"""
do_algebra(operator::Vector{String}, operand::Vector{Int})
Given two lists operator, and operand. The first list has basic algebra
operations, and the second list is a list of integers. Use the two given lists
to build the algebric expression and return the evaluation of this expression.
The basic algebra ope... | __label__POS | 0.979006 |
"""
order_by_points(nums::Vector{Int})::Vector{Int}
Write a function which sorts the given list of integers in ascending order
according to the sum of their digits. Note: if there are several items with
similar sum of their digits, order them based on their index in original list.
# Examples
```jldoctest
julia> ... | __label__POS | 0.999776 |
"""
circular_shift(x::Int, shift::Int)::String
Circular shift the digits of the integer x, shift the digits right by `shift` and
return the result as a string. If `shift` > number of digits, return digits
reversed.
# Examples
```jldoctest
julia> circular_shift(12, 1)
"21"
julia> circular_shift(12, 2)
"12"
```
"... | __label__POS | 0.987602 |
"""
simplify(x::String, n::String)::Bool
Your task is to implement a function that will simplify the expression x * n.
The function returns True if x * n evaluates to a whole number and False
otherwise. Both x and n, are string representation of a fraction, and have the
following format, <numerator>/<denominator> ... | __label__POS | 0.708869 |
"""
sort_array_based_on_head_tail(xs::Int)::Vector{Int}
Given an array of non-negative integers, return a copy of the given array after
sorting, you will sort the given array in ascending order if the sum( first
index value, last index value) is odd, or sort it in descending order if the
sum( first index value, la... | __label__POS | 0.998047 |
"""
has_close_elements(numbers::Vector{Float64}, threshold::Float64)::Bool
Check if in given list of `numbers`, are any two numbers closer to each other than
given `threshold`.
# Examples
```jldoctest
julia> has_close_elements([1.0, 2.0, 3.0], 0.5)
false
julia> has_close_elements([1.0, 2.8, 3.0, 4.0, 5.0, 2.0],... | __label__POS | 0.990499 |
"""
find_max(words::Vector{String})::String
Write a function that accepts a list of strings. The list contains different
words. Return the word with maximum number of unique characters. If multiple
strings have maximum number of unique characters, return the one which comes
first in lexicographical order.
# Examp... | __label__POS | 0.999613 |
"""
is_sorted(xs::Vector{Int})::Bool
Given a list of numbers, return whether or not they are sorted in ascending
order. If list has more than 1 duplicate of the same number, return `false`.
Assume no negative numbers and only integers.
# Examples
```jldoctest
julia> is_sorted([5])
true
julia> is_sorted([1, 2, 3... | __label__POS | 0.998829 |
"""
get_row(xs::Vector{Vector{Int}}, x::Int)::Vector{Tuple{Int, Int}}
You are given a 2 dimensional data, as a nested lists, which is similar to
matrix, however, unlike matrices, each row may contain a different number of
columns. Given `xs`, and integer `x`, find integers `x` in the list `xs`, and
return list of ... | __label__POS | 0.993928 |
"""
count_nums(xs::Vector{Int})::Int
Write a function `count_nums` which takes an array of integers and returns the
number of elements which has a sum of digits > 0. If a number is negative, then
its first signed digit will be negative: e.g. -123 has signed digits -1, 2, and
3.
# Examples
```jldoctest
julia> cou... | __label__POS | 1.000004 |
"""
compare(game::Vector{Int}, guess::Vector{Int})::Vector{Int}
I think we all remember that feeling when the result of some long-awaited event
is finally known. The feelings and thoughts you have at that moment are
definitely worth noting down and comparing. Your task is to determine if a
person correctly guessed... | __label__POS | 0.841145 |
"""
closest_integer(value::String)::Int
Create a function that takes a value (string) representing a number and returns
the closest integer to it. If the number is equidistant from two integers, round
it away from zero.
!!! note
Rounding away from zero means that if the given number is equidistant
from t... | __label__POS | 0.998115 |
"""
multiply_unit_digits(a::Int, b::Int)::Int
Complete the function that takes two integers and returns the product of their
unit digits. Assume the input is always valid.
# Examples
```jldoctest
julia> multiply_unit_digits(148, 412)
16
julia> multiply_unit_digits(19, 28)
72
julia> multiply_unit_digits(2020, 1... | __label__POS | 0.990187 |
"""
cycpattern_check(a::String , b::String)::Bool
You are given 2 words. You need to return `true` if the second word or any of
its rotations is a substring in the first word.
# Example
```jldoctest
julia> cycpattern_check("abcd", "abd")
false
julia> cycpattern_check("hello", "ell")
true
julia> cycpattern_chec... | __label__POS | 0.930489 |
"""
prime_length(s::String)::Bool
Write a function that takes a `s` and returns `true` if `s` length is a prime
number or `false` otherwise.
# Examples
```jldoctest
julia> prime_length("Hello")
true
julia> prime_length("abcdcba")
true
julia> prime_length("kittens")
true
julia> prime_length("orange")
false
```... | __label__POS | 0.999392 |
"""
histogram(s::String)::Dict{String, Int}
Given a string representing a space separated lowercase letters, return a
dictionary of the letter with the most repetition and containing the
corresponding count. If several letters have the same occurrence, return all of
them.
# Examples
```jldoctest
julia> histogram... | __label__POS | 0.95411 |
"""
is_multiply_prime(a::Int)::Bool
Write a function that returns `true` if the given number is the multiplication
of 3 prime numbers and false otherwise. Knowing that `a` is less then 100.
# Examples
```jldoctest
julia> is_multiply_prime(30) # 30 = 2 * 3 * 5
true
```
"""
"""
is_multiply_prime(a::Int)::Boo... | __label__POS | 0.999963 |
"""
odd_count(xs::Vector{String})::Vector{String}
Given a list of strings, where each string consists of only digits, return a
list. Each element `i` of the output should be "the number of odd elements in
the string i of the input." where all the i"s should be replaced by the number
of odd digits in the i"th strin... | __label__POS | 0.998961 |
"""
factorize(n::Int)::Vector{Int}
Return list of prime factors of given integer in the order from smallest to
largest. Each of the factors should be listed number of times corresponding to
how many times it appeares in factorization. Input number should be equal to the
product of all factors.
# Examples
```jldo... | __label__POS | 0.992586 |
"""
match_parens(lst::Vector{String})::String
You are given a list of two strings, both strings consist of open parentheses
"(" or close parentheses ")" only. Your job is to check if it is possible to
concatenate the two strings in some order, that the resulting string will be
good. A string S is considered to be ... | __label__POS | 0.980141 |
"""
fix_spaces(s::String)::String
Given a string text, replace all spaces in it with underscores, and if a string
has two or more consecutive spaces, then replace all consecutive spaces with -
# Examples
```jldoctest
julia> fix_spaces("Example")
"Example"
julia> fix_spaces("Example 1")
"Example_1"
julia> fix_s... | __label__POS | 0.987488 |
"""
file_name_check(file_name::String)::String
Create a function which takes a string representing a file's name, and returns
'Yes' if the the file's name is valid, and returns 'No' otherwise. A file's name
is considered to be valid if and only if all the following conditions are met:
- There should not be more tha... | __label__POS | 0.884161 |
"""
even_odd_palindrome(n::Int)::Tuple{Int, Int}
Given a positive integer n, return a tuple that has the number of even and odd
integer palindromes that fall within the range(1, n), inclusive.
!!! note
1. 1 <= n <= 10^3
2. returned tuple has the number of even and odd integer palindromes respectively.
... | __label__POS | 0.999125 |
"""
parse_nested_parens(paren_string::String)::Vector{Int}
Input to this function is a string represented multiple groups for nested
parentheses separated by spaces. For each of the group, output the deepest level
of nesting of parentheses. E.g. `(()())` has maximum two levels of nesting while
`((()))` has three.
... | __label__POS | 0.99956 |
"""
check_if_last_char_is_a_letter(s::String)::Bool
Create a function that returns `true` if the last character
of a given string is an alphabetical character and is not
a part of a word, and `false` otherwise.
Note: "word" is a group of characters separated by space.
# Examples
```jldoctest
julia> check_if_las... | __label__POS | 0.62553 |
"""
sort_array(arr::Vector{Int})::Vector{Int}
In this Kata, you have to sort an array of non-negative integers according to
number of ones in their binary representation in ascending order. For similar
number of ones, sort based on decimal value.
It must be implemented like this:
# Examples
```jldoctest
julia> ... | __label__POS | 0.814402 |
"""
intersection(interval1::Vector{Int}, interval2::Vector{Int})::String
You are given two intervals, where each interval is a pair of integers. For
example, interval = (start, end) = (1, 2). The given intervals are closed which
means that the interval (start, end) includes both start and end. For each given
inter... | __label__POS | 0.999944 |
"""
min_path(grid::Vector{Vector{Int}}, k::Int)::Vector{Int}
Given a grid with `N` rows and `N` columns (`N >= 2`) and a positive integer
`k`, each cell of the grid contains a value. Every integer in the range `[1, N * N]` inclusive appears exactly once on the cells of the grid.
You have to find the minimum path ... | __label__POS | 0.999642 |
"""
fruit_distribution(s::String, n::Int)::Int
In this task, you will be given a string that represents a number of apples and
oranges that are distributed in a basket of fruit this basket contains apples,
oranges, and mango fruits. Given the string that represents the total number of
the oranges and apples and an... | __label__POS | 0.914463 |
"""
search(numbers::Vector)::Int
You are given a non-empty list of positive integers. Return the greatest integer
that is greater than zero, and has a frequency greater than or equal to the
value of the integer itself. The frequency of an integer is the number of times
it appears in the list. If no such a value ex... | __label__POS | 0.999488 |
"""
min_sub_array_sum(nums::Vector{Int})::Int
Given an array of integers `nums`, find the minimum sum of any non-empty
sub-array of nums.
# Example
```jldoctest
julia> min_sub_array_sum([2, 3, 4, 1, 2, 4])
1
julia> min_sub_array_sum([-1, -2, -3])
-6
```
"""
function min_sub_array_sum(nums::Vector{Int})::Int
... | __label__POS | 1.000009 |
"""
int_to_mini_roman(number::Int)::String
Given a positive integer, obtain its roman numeral equivalent as a string, and
return it in lowercase.
Restrictions: 1 <= num <= 1000
# Examples
```jldoctest
julia> int_to_mini_roman(19)
"xix"
julia> int_to_mini_roman(152)
"clii"
julia> int_to_mini_roman(426)
"cdxxvi... | __label__POS | 0.978662 |
"""
find_closest_elements(numbers::Vector{Float64})::Tuple{Float64, Float64}
From a supplied list of numbers (of length at least two) select and return two
that are the closest to each other and return them in order (smaller number,
larger number).
# Examples
```jldoctest
julia> find_closest_elements([1.0, 2.0, ... | __label__POS | 0.998362 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.