August 28, 2020

Kangana Ranaut's Tejas to take off in December

After celebrating the Indian Army with URI: The Surgical Strike last year and recently announcing another war film in Pippa, RSVP’S air force film TEJAS is set to go on floors this December.

TEJAS is the story of a daring and fierce fighter pilot, played by Kangana Ranaut. The Indian Air Force was the first of the country's defence forces to induct women into combat roles in 2016. The film takes inspiration from this landmark event.

August 27, 2020

Rajesh Kumar has tested Corona positive!

Star Bharat recently released the promo of their upcoming show ‘Excuse Me Madam’ and audience couldn’t wait for Rajesh to come back on screen. The actor has tested Corona positive and is now quarantined at home with his family.  With Rajesh Kumar in the lead role, Nyra Banerjee as his boss and Sucheta Khanna as his wife the show was set to launch soon.

August 24, 2020

Yeh Rishta Kya Kehlata Hai actor Sachin Tyagi test positive for Covid-19


A couple of days ago shooting of Kasautii Zindagii Kay was halted after Parth Samthaan aka Anurag Basu tested positive for Coronavirus. Now we heard, the Star Plus has stopped shooting for Yeh Rishta Kya Kehlata Hai because Sachin Tyagi and a few more crew members have tested positive.

Amitabh Bachchan begins shooting for Kaun Banega Crorepati 12

Amitabh Bachchan, who recently recovered from COVID-19 is now back on the sets of  'Kaun Banega Crorepati'. The megastar took to his Instagram account to announce that he has begun shooting the 12th season of the popular quiz show.

August 09, 2020

#LeetCode: Rotting Oranges

In a given grid, each cell can have one of three values:

the value 0 representing an empty cell;
the value 1 representing a fresh orange;
the value 2 representing a rotten orange.
Every minute, any fresh orange that is adjacent (4-directionally) to a rotten orange becomes rotten.

Return the minimum number of minutes that must elapse until no cell has a fresh orange.  If this is impossible, return -1 instead.

August 08, 2020

#LeetCode: Path Sum III

You are given a binary tree in which each node contains an integer value.

Find the number of paths that sum to a given value.

The path does not need to start or end at the root or a leaf, but it must go downwards (traveling only from parent nodes to child nodes).

August 06, 2020

'Yeh Rishety Hain Pyaar Ke' actor Sameer Sharma committed suicide

TV actor Sameer Sharma committed suicide at his home in Mumbai. He was found hanging from the kitchen ceiling at his home in Neha CHS building, situated at Ahinsa Marg in Malad (West).

August 05, 2020

#LeetCode: Add and Search Word - Data structure design

Design a data structure that supports the following two operations:
  • void addWord(word)
  • bool search(word)
search(word) can search a literal word or a regular expression string containing only letters a-z or .. A . means it can represent any one letter.

#AyodhyaBhoomiPoojan


माता रामो मत्पिता रामचंन्द्र:। स्वामी रामो मत्सखा रामचंद्र:।
सर्वस्वं मे रामचन्द्रो दयालु। नान्यं जाने नैव जाने न जाने ॥३०॥

August 03, 2020

#LeetCode: Valid Palindrome

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.

Note: For the purpose of this problem, we define empty string as valid palindrome.

Example 1:
Input: "A man, a plan, a canal: Panama"
Output: true

Example 2:
Input: "race a car"
Output: false

August 02, 2020

#LeetCode: Design HashSet

Design a HashSet without using any built-in hash table libraries.

To be specific, your design should include these functions:

  • add(value): Insert a value into the HashSet. 
  • contains(value) : Return whether the value exists in the HashSet or not.
  • remove(value): Remove a value in the HashSet. If the value does not exist in the HashSet, do nothing.

August 01, 2020

#LeetCode : Detect Capital

Given a word, you need to judge whether the usage of capitals in it is right or not.

We define the usage of capitals in a word to be right when one of the following cases holds:
  • All letters in this word are capitals, like "USA".
  • All letters in this word are not capitals, like "leetcode".
  • Only the first letter in this word is capital, like "Google".
  • Otherwise, we define that this word doesn't use capitals in a right way.