Reverse String - Leet Code Solution
Problem Statement Write a function that reverses a string. The input string is…
August 31, 2019
This problem is a simple mathematical calculation. Lets start deriving some equations. Note: Here we are talking about the round clock, which displays 1-12 hours.
A complete round of a clock is equal to 360 degree angle. This is simple, minute hand complete 360 degree in 60 minutes. Or, it takes 60 minutes to complete 360 degree
60 M -> 360 degree
1 M -> 360/60 -> 6 degree
Means, minute hands moves 6 degree per minute.
For 'M' minutes, it will be 6 * M degree
Hour hand takes 12 hours to complete a round i.e. 360 degree. But, if you notice. When hour hand moves, there will be a movement in minute hand too, due to that hour hand will move to some extent.
For hour hand:
12 Hours -> 360 degree
1 Hour -> 360/12 -> 30 degree
For 'H' Hours -> 30 * H degree
And, there will be some movement in minute hand too. Continuing above equation:
12 Hours -> 360 degree
12 * 60 Minutes -> 360 degree
1 Minute -> 360 / (12 * 60) -> 1/2 degree
In 'M' minuets -> M/2 degree
Combining them, Angle of hour : 30 H + M/2
As from above equations:
Angle of Hour hand - Angle of Minute hand
=> (30 H + M/2) - (6 M)
=> 30 H - 5.5 M
Angle at time: 6:15
30 H - 5.5 M
=> 30 * 6 - 5.5 * 15
=> 180 - 82.5
=> 97.5
Problem Statement Write a function that reverses a string. The input string is…
Problem Statement You are given a string text of words that are placed among…
Problem Statement Given a string s, return the maximum number of unique…
Problem Statement Given an array of integers, find if the array contains any…
Graph Topological Sorting This is a well known problem in graph world…
This algorithm is very useful for large input. And, is quite efficient one. It…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…