“All of my friends who have younger siblings who are going to college or high school – my number one piece of advice is: You should learn how to program.”
– Mark Zuckerberg
Recent post
How to mount the remote file system from the remote machine to your local machine?
sshfs uses SFTP (SSH file transfer protocol) for mounting the remote file system of the remote machine to your local machine
Built-In Variables in Robot Framework.
Robot Framework provides some built-in variables. It’s predefined by Robot Framework Creator. 1 . Operating System Variables Built-In Variables Explanation ${CURDIR} An absolute path to the directory where the test data file is located. This variable is case-sensitive. ${TEMPDIR} An absolute path to the temporary system directory. In UNIX-like systems, this is typically /tmp, and in …
Removing all duplicates characters from a given string.
According to the heading, the resultant string consists of unique characters. for example:- input string –> 1 .”rama” 2 . “ramu” 3. “rrrr” Resultant string –> 1 . “ram” 2. “ramu” 3. “r” Explanation:- step 1:- Initializing input string step 1:- Initializing input string step 2:- taking each character from the input string and check …
Removing all duplicates characters from a given string. Read More »
coding is life!
“First, solve the problem. Then, write the code.” – John Johnson