Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Encode itYou are given an integer N . You need to use Base - 6 2 encoding and return the resulting string.Note In Base -

Encode itYou are given an integer N. You need to use Base-62 encoding and return the resulting string.Note In Base-62 encoding, we use: 0-9->0-910-35-> A-Z 36-61-> a-zTaskFor each given integer, print the Base-62 encoded string.ExampleAssumption N: 1212Approach We get the encoded string as JY. It can be verified as: 62*19+34=1212Function descriptionComplete the function solve(). This function takes the following parameters and returns the required string: N: Represents the integer to be encoded.Input formatNote: This is the input format that you must use to provide custom input (available above the Compile and Test button). The first line contains a single integer T that denotes the number of test cases. T also denotes the number of times you have to run the solve() function on a different set of inputs. For each test case: The single line contains a positive integer N.Output FormatFor each test case print the encoded string on a new line.Constraints1T1050N1018Code snippets (also called starter code/boilerplate code)This question has code snippets for C, CPP, Java, and Python.Sample input124523Sample output6NXExplanationGiven T: 1(number of test cases) For the first test case we have: N: 24523Approach We get the encoded string as 6NX. It can be verified as: 62*62*6+62*23+33=24523The following test cases are the actual test cases of this question that may be used to evaluate your submission.Sample input 12004923381003922735959763287078328792878102443278908450713194810529340463223815629288708698843194178672395524932924073794623045831578981438692767Sample output 10aMueLnvYR11A7awPLeguFxqvVlISYl52MK0JC8aD2Hal15a0sou3BpRjl1nRk16unjU8VF6DzQdiIlRMj9FSBmfYWXePView moreSample input 25084375455369277052123772444125179137754446487156255038016070061723258101842615006579452210914930532661911977746294274348874855896933718308800117608504772433562077Sample output 210KP64xfEqXHYmO6BdAg5eDebOAmCei1BbGRnnEjl10FBViGsyDC15aOH6Rjfsft82DCuQfcV14Fxt5tEsWziwxPkwUPaHYlyvKFKMFAView moreNote:Your code must be able to print the sample output from the provided sample input. However, your code is run against multiple hidden test cases. Therefore, your code must pass these hidden test cases to solve the problem statement.LimitsTime Limit: 1.0 sec(s) for each input fileMemory Limit: 256 MBSource Limit: 1024 KBScoringScore is assigned if any testcase passesAllowed LanguagesBash, C, C++14, C++17, Clojure, C#, D, Erlang, F#, Go, Groovy, Haskell, Java 8, Java 14, JavaScript(Node.js), Julia, Kotlin, Lisp (SBCL), Lua, Objective-C, OCaml, Octave, Pascal, Perl, PHP, Python, Python 3, Python 3.8, Racket, Ruby, Rust, Scala, Swift, TypeScript, Visual Basic

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Relate these to the competencies in the employability matrix. 202-3

Answered: 1 week ago

Question

7. Set team as well as individual performance goals.

Answered: 1 week ago