VOOZH about

URL: https://www.geeksforgeeks.org/dsa/remove-characters-from-a-numeric-string-such-that-string-becomes-divisible-by-8/

⇱ Remove characters from a numeric string such that string becomes divisible by 8 - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Remove characters from a numeric string such that string becomes divisible by 8

Last Updated : 11 Jul, 2025

Given a non-negative integer represented in the form of a numeric string str. Remove zero or more characters from the string such that the number becomes divisible by 8. If it is possible, print the string after removing the characters otherwise print -1.
Examples: 

Input: str = "3454" 
Output: 344 
After removing '5', string becomes 344 which is divisible by 8.
Input: str = "111" 
Output: -1 

Approach: Considering the divisibility rule of 8, we just need to check if the number formed by last 3 characters of str is divisible by 8 or not. Thus, we can iterate over all multiples of 8 upto 1000 and check if any of the multiple exists as a sub-sequence in the given string, then that multiple is our required answer. Otherwise, there exists no answer since all multiples of 8 greater than 1000 also needs to have the number (formed from last 3 digits) which has already been checked.

Steps to solve the problem:

  •  In a function checkSub that takes two string arguments, sub and s.
    • Initialize a variable j to 0.
    • Iterate over the characters of s using a for loop from i = 0 to i < s.size().
      • Check if the jth character of sub is equal to the ith character of s than  increment j by 1.
    • if j is equal to the length of sub, return true. Otherwise, return false.
  •  In a function getMultiple that takes a string argument s.
    • Iterate over all multiples of 8 from 0 to 999 using a for loop from i = 0 to i < 1000 by incrementing i by 8.
      • Check if the current multiple i exists as a subsequence in the given string s using the checkSub function defined earlier.
      • If i exists as a subsequence, return i.
    • If no multiple of 8 is found, return -1.


Below is the implementation of the above approach: 


Output: 
344

 

Time Complexity: O(n)
Auxiliary Space: O(1)

Comment
Article Tags: