iamtarun commited on
Commit
43ab4b7
1 Parent(s): 47b144e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -10,10 +10,12 @@ pipeline_tag: text-generation
10
  tags:
11
  - code
12
  widget:
13
- - text: "Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem.\n\n### Description:\nVimal has a bag that squares the number of items inside it every day. Given n items in the bag how many items there will be in 1 day?\n\n###Input:\n5\n###Output:\n25\n\n###Input:\n10\n###Output:\n100\n\n###Code:\n"
14
  example_title: "Code Example 1"
15
- - text: "Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem.\n\n### Description:\nMr. Chanek has an integer represented by a string s. Zero or more digits have been erased and are denoted by the character _. There are also zero or more digits marked by the character X, meaning they're the same digit. Mr. Chanek wants to count the number of possible integer s, where s is divisible by 25. Of course, s must not contain any leading zero. He can replace the character _ with any digit. He can also replace the character X with any digit, but it must be the same for every character X. As a note, a leading zero is any 0 digit that comes before the first nonzero digit in a number string in positional notation. For example, 0025 has two leading zeroes. An exception is the integer zero, (0 has no leading zero, but 0000 has three leading zeroes). Input One line containing the string s (1 ≤ |s| ≤ 8). The string s consists of the characters 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, _, and X. Output Output an integer denoting the number of possible integer s. Examples Input 25 Output 1 Input _00 Output 9 Input _XX Output 9 Input 0 Output 1 Input 0_25 Output 0 Note In the first example, the only possible s is 25. In the second and third example, s ∈ {100, 200,300,400,500,600,700,800,900}. In the fifth example, all possible s will have at least one leading zero.\n\n### Input:\n0\n\n### Output:\n1\n\n\n### Input:\n_XX\n\n### Output:\n9\n\n\n### Code:\n"
16
  example_title: "Code Example 2"
 
 
17
  ---
18
 
19
  # Competitive Programming LLM for Python Language
 
10
  tags:
11
  - code
12
  widget:
13
+ - text: "def isprime(num):"
14
  example_title: "Code Example 1"
15
+ - text: "def binary_search"
16
  example_title: "Code Example 2"
17
+ - text: "def square(num):"
18
+ example_title: "Code Example 3"
19
  ---
20
 
21
  # Competitive Programming LLM for Python Language