Hello coders, In this post, you will learn how to solve ‘Tr’ Command #1 HackerRank Solution. This problem is a part of the Linux Shell series.

‘Tr’ Command #1 HackerRank Solution
Problem
In this challenge, we practice using the tr command because it is a useful translation tool in Linux.
In a given fragment of text, replace all parentheses () with box brackets [].
Input Format
A block of ASCII text.
Output Format
Output the text with all parentheses () replaced with box brackets [].
Sample Input
int i=(int)5.8
(23 + 5)*2
Sample Output
int i=[int]5.8
[23 + 5]*2
‘Tr’ Command #1 HackerRank Solution
#Output the text with all parentheses () replaced with box brackets []. tr "()" "[]"
Note: This problem (‘Tr’ Command #1) is generated by HackerRank but the solution is provided by chase2learn. This tutorial is only for Learning and Educational purpose.